{% if videos %}
FEATURED ON LET'SEE
{{ videos[0]['category'] }}

{{ videos[0]['title'] }}

{% if videos[0]['description'] %}

{{ videos[0]['description'] }}

{% else %}

Watch your latest addition and discover more from your personal library.

{% endif %}
{% else %}
WELCOME TO LET'SEE

Your library starts here.

Upload your first video and build your own streaming collection.

{% endif %}
{% if videos %} {% endif %}
YOUR LIBRARY
Recently Added
{% for video in videos %} {% include 'video_card.html' %} {% else %}
🎬 No videos yet

Upload a video to start your Let'See library.

{% endfor %}
{% set categories = ['Movies', 'Music', 'Travel', 'Family', 'Personal'] %} {% for category in categories %} {% set category_videos = videos|selectattr('category', 'equalto', category)|list %} {% if category_videos %}
EXPLORE
{{ category }}
{{ category_videos|length }} video{% if category_videos|length != 1 %}s{% endif %}
{% for video in category_videos %} {% include 'video_card.html' %} {% endfor %}
{% endif %} {% endfor %}